#!/bin/bash # BeGPL.com's Note: If you did not purchased from us the licensing system will not work at all even if you have source code provided by the leachers, the official versions of Syslic, GBLicense v15, and CPS (Scam), are avaliable at BeGPL only. Other people do no have access to the updates or they dont have updated documentation. We provide free weekly updates on the source code and documentation. ------------ Go To BeGPL.com
#/etc/rc.d/init.d/GBLSWS

# Source function library.
. /etc/init.d/functions


start() {
        echo -n "Starting GBLSWS... "
        /usr/local/lsws/admin/misc/lswsup &
        return 0
}

stop() {
        echo -n "Shutting down GBLSWS... "
        pkill -9 lswsup
        return 0
}

case "$1" in
    start)
        start
        ;;
    stop)
        stop
        ;;
    status)
        ;;
    restart)
        stop
        start
        ;;
    reload)
        ;;
    *)
        echo "Usage: GBLSWS {start|stop|status|reload|restart}"
 exit 1
        ;;
esac
exit $?
